home *** CD-ROM | disk | FTP | other *** search
/ Building Homes of Our Own / Building Homes of our Own.iso / setup / data1.cab / Everything / working / houCons.dxr / interface_406_ConstructionMouseCatcherBehave.ls < prev    next >
Encoding:
Text File  |  2002-09-25  |  299 b   |  19 lines

  1. property mySprite
  2.  
  3. on beginSprite me
  4.   mySprite = me.spriteNum
  5.   sprite(mySprite).locZ = 151
  6. end
  7.  
  8. on mouseUp me
  9.   outPut("construction mouseCatcher got <mouseUp>")
  10. end
  11.  
  12. on mouseDown me
  13.   outPut("construction mouseCatcher got <mouseDown>")
  14. end
  15.  
  16. on endSprite me
  17.   sprite(mySprite).locZ = mySprite
  18. end
  19.